home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / etc / network / if-down.d / avahi-autoipd next >
Text File  |  2009-10-18  |  985b  |  36 lines

  1. #!/bin/sh
  2.  
  3. set -e
  4.  
  5. # Description:      Remove routes to allow communication between machines which
  6. #                   only have an IPv4LL address assigned and those which only
  7. #                   have a routable address assigned. These were added by
  8. #                   /etc/network/if-up.d/avahi-autoipd.
  9. #
  10. #                   See http://developer.apple.com/qa/qa2004/qa1357.html for
  11. #                   more information.
  12.  
  13.  
  14. [ "$IFACE" != "lo" ] || exit 0
  15. case "$ADDRFAM" in
  16.   inet|NetworkManager) ;;
  17.   *) exit 0
  18. esac
  19. case "$METHOD" in
  20.     static|dhcp|NetworkManager) ;;
  21.     *) exit 0
  22. esac
  23.  
  24. if [ -x /bin/ip ]; then
  25.     # route already present?
  26.     ip route show | grep -q '^169.254.0.0/16[[:space:]]' && exit 0
  27.  
  28.     /bin/ip route del 169.254.0.0/16 dev $IFACE metric 1000 scope link || true
  29. elif [ -x /sbin/route ]; then
  30.     # route already present?
  31.     /sbin/route -n | grep -q "^169.254.0.0[[:space:]]" && exit 0
  32.  
  33.     /sbin/route del -net 169.254.0.0 netmask 255.255.0.0 dev $IFACE metric 1000 || true
  34. fi
  35.  
  36.